home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / dos / c / tcclib.exe / REPCHARA.C < prev    next >
Encoding:
Text File  |  1990-01-31  |  228 b   |  12 lines

  1. unsigned char far *CurrentPos( void );
  2.  
  3. void RepCharAttr( int times, unsigned char attrib, unsigned char c )
  4. {
  5.     unsigned char far *scptr = CurrentPos();
  6.  
  7.     while ( times-- ) {
  8.         *scptr++ = c;
  9.         *scptr++ = attrib;
  10.     }
  11. }
  12.